home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 41
/
Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso
/
-seriously_amiga-
/
misc
/
installer
/
examples
/
stringformat.installer
< prev
next >
Wrap
Text File
|
1999-04-19
|
284b
|
17 lines
; demonstration of the string format function
(set text1 ("%s %s %s" ("Hello")
(" Wo%s" ("%sld " "r"))
"!"
)
)
(set text2 ("\n\nsome math: %ld * %ld = %ld" 30 40 (* 30 40)))
(exit ("%s%s" text1 text2) (quiet))
(welcome)